home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / AEA / Source / Includes / AEARegistry.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-24  |  280 b   |  24 lines

  1. /*    =============
  2.  *    AEARegistry.h
  3.  *    =============
  4.  */
  5.  
  6. #ifndef AEAREGISTRY_H
  7. #define AEAREGISTRY_H
  8.  
  9. #include <AppleEvents.h>
  10.  
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14.  
  15. enum {typeModelToken = 'Modl'};
  16.  
  17. const AEDesc gNullDesc = {typeNull, NULL};
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif
  24.